@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
  font-size: 62.5%;
  font-family: serif;
}

html p {
  font-family: sans-serif;
}

body {
  line-height: 2;
  color: #432;
  margin: 0px;
  display: flex;
  flex-direction: column;
  margin: 0;
}

a {
  color: #432;
  text-decoration: none;
}

img {
  max-width: 100%;
}

article {
  flex: 1;
}

@media only screen and (max-width: 960px) {
  img {
    max-width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .br-sp {
    display: none;
  }
}

/*==================================================
ふわっ
===================================*/
body {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*==================================================
下からふわっ
===================================*/
.sa {
  opacity: 0;
  transition: all .5s ease;
}

.sa.show {
  transition: 1.3s ease-in-out;
  opacity: 1;
  transform: none;
}

.sa--up {
  transform: translate(0, 10px);
}

/*==================================================
ロゴアニメーション
===================================*/
#logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: white;
}

#logo_loader .f_logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 250px;
  height: 15vh;
  text-align: center;
  color: #fff;
  font-size: 30px;
}

#logo_loader .f_logo img {
  width: 100%;
  height: auto;
}

#logo_loader .f_logo:before {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background-color: white;
  position: absolute;
  top: 0;
  left: 100%;
  animation: loadLogo 1.5s;
}

@keyframes loadLogo {
  0% {
    left: 0;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

#logo_loader .f_logo:before {
  animation: loadLogo 1.5s;
}

#logo_loader.open {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 2s;
}

@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }

  clip-path: polygon(0 0, 100% 0, 100% 150%, 0% 100%);
}

/* HEADER
------------------------------- */
#top-head {
  width: 100%;
  height: 60px;
  background: white;
  opacity: 0.9;
  display: flex;
  position: fixed;
  z-index: 999;
}

#top-head .inner {
  float: left;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*logo style*/
.inner h1 img {
  width: 130px;
  padding-top: 14px;
  text-decoration: none;
  font-weight: bold;
}

/*nav style*/
#top-head nav ul {
  display: flex;
  list-style-type: none;
}

/*nav link style*/
#top-head nav ul li a {
  text-decoration: none;
  padding: 0 20px 0 20px;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #9ba59b;
  background:
    linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 0) 1.5px no-repeat;
  transition: 0.5s, background-position 0s 0.5s;
}

@media screen and (min-width:960px) {
  #top-head nav ul li a:hover {
    --d: 100%;
    --p: 100%;
    color: #432;
  }
}

#nav_toggle {
  display: none;
}

/*============================
mobile style
============================*/
@media screen and (max-width:960px) {

  /*hamburger menu style*/
  #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    z-index: 100;

  }

  #nav_toggle div {
    position: relative;
  }

  /*hamburger menu close style*/
  #nav_toggle span {
    display: block;
    height: 2px;
    background: #404040;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }

  #nav_toggle span:nth-child(1) {
    top: 0px;
  }

  #nav_toggle span:nth-child(2) {
    top: 10px;
  }

  #nav_toggle span:nth-child(3) {
    top: 20px;
  }

  /*hamburger menu open style*/
  .open #nav_toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /*nav style*/
  #top-head nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 1040px;
    background: white;
    z-index: 999;
  }

  #top-head nav ul {
    display: block;
    width: 90%;
  }

  #top-head nav ul li {
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
    padding: 10px;
  }

  #top-head nav ul li:last-child {
    border: none;
  }

  /*nav link style*/
  #top-head nav ul li a {
    font-size: 1.5rem;
    display: block;
  }
}

#menu-item-5272>a:after {
  content: 'Home';
  display: block;
}

#menu-item-5270>a:after {
  content: 'Business';
  display: block;
}

#menu-item-5163>a:after {
  content: 'Company';
  display: block;
}

#menu-item-5166>a:after {
  content: 'News';
  display: block;
}

#menu-item-5165>a:after {
  content: 'Recruit';
  display: block;
}

#menu-item-5164>a:after {
  content: 'Contact';
  display: block;
}

#menu-item-5171>a:after {
  content: 'Access';
  display: block;
}

/* FOTTER
------------------------------- */
footer {
  background: #019040;
  text-align: center;
  padding: 2rem;
}

footer ul {
  margin: auto;
  padding: 0;
  max-width: 1100px;
  width: 90%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  list-style: none;
  font-size: 1.5rem;
  gap: 30px;
}

footer li {
  padding: 1rem;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #c7c3ba;
}

footer small {
  color: #c7c3ba;
  font-size: 1.3rem;
}

.fa-facebook-f {
  font-size: 1.2em;
}

.facebook .fa-square {
  color: gray;
}

.facebook:hover .fa-square {
  color: #3b5998;
  transition: 0.3s ease-in-out;
}

.fa-twitter {
  font-size: 1.2em;
}

.twitter .fa-square {
  color: gray;
}

.twitter:hover .fa-square {
  color: #55acee;
  transition: 0.3s ease-in-out;
}

.fa-instagram {
  font-size: 1.4em;
}

.instagram .fa-square {
  color: gray;
}

.instagram:hover .fa-square {
  color: #d22e90;
  transition: 0.3s ease-in-out;
}

.line .fa-square {
  color: gray;
}

.line:hover .fa-square {
  color: #00B900;
  transition: 0.3s ease-in-out;
}

/* insta follow
------------------------------- */
.insta_btn2 {
  /*ボタンの下地*/
  margin-right: 3px;
  color: #FFF;
  /*文字・アイコン色*/
  border-radius: 7px;
  /*角丸に*/
  position: relative;
  display: inline-block;
  height: 23px;
  /*高さ*/
  width: 90px;
  /*幅*/
  text-align: center;
  /*中身を中央寄せ*/
  font-size: 1.2rem;
  /*文字のサイズ*/
  line-height: 25px;
  /*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /*グラデーション①*/
  overflow: hidden;
  /*はみ出た部分を隠す*/
  text-decoration: none;
  /*下線は消す*/
  vertical-align: text-bottom
}

.insta_btn2:before {
  /*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*全体を覆う*/
  height: 100%;
  /*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram {
  /*アイコン*/
  font-size: 15px;
  /*アイコンサイズ*/
  position: relative;
  top: 1px;
  /*アイコン位置の微調整*/
}

.insta_btn2 span {
  /*テキスト*/
  display: inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span {
  /*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.insta_btn2:hover {
  text-decoration: none;
  opacity: .8;
  transition: 0.2s ease-in-out;
}

.rakuten_btn2 {
  /*ボタンの下地*/
  color: #FFF;
  /*文字・アイコン色*/
  border-radius: 7px;
  /*角丸に*/
  position: relative;
  display: inline-block;
  height: 23px;
  /*高さ*/
  width: 90px;
  /*幅*/
  text-align: center;
  /*中身を中央寄せ*/
  font-size: 1.2rem;
  /*文字のサイズ*/
  line-height: 25px;
  /*高さと合わせる*/
  background-color: #CB3E3E;
  overflow: hidden;
  /*はみ出た部分を隠す*/
  text-decoration: none;
  /*下線は消す*/
  vertical-align: text-bottom
}

.rakuten_btn2:before {
  /*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*全体を覆う*/
  height: 100%;
  /*全体を覆う*/
  background-color: #CB3E3E;
}

.rakuten_btn2 .fa-shopping-cart {
  /*アイコン*/
  font-size: 15px;
  /*アイコンサイズ*/
  position: relative;
  top: 1px;
  /*アイコン位置の微調整*/
}

.rakuten_btn2 span {
  /*テキスト*/
  display: inline-block;
  position: relative;
  transition: .5s
}

.rakuten_btn2:hover span {
  /*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.rakuten_btn2:hover {
  text-decoration: none;
  opacity: .8;
  transition: 0.2s ease-in-out;
}

/* INDEX
------------------------------- */
.main-title {
  background-image: url(../images/fujiyama.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 400px;
  width: 100%;
}

#main-title1 {
  line-height: 1px;
  max-width: 1100px;
  width: 90%;
  padding-top: 90px;
  margin: 0 auto;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: white;
  animation: fadeIn 4s ease 2.5s 1 normal backwards;
}

#main-title2 {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: white;
  animation: fadeIn 4s ease 4.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-news {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.home-news h1 {
  font-size: 2rem;
  text-align: center;
  padding-top: 1%;
}

.home-news ul {
  list-style-type: none;
  padding: 0;
}

.news-list a:hover {
  --d: 100%;
  --p: 100%;
  color: #432;
}

.news-list a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #432;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
  background:
    linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 0) 1px no-repeat;
  transition: 0.5s, background-position 0s 0.5s;
}

.news-list .item:first-child a {
  border-top: 1px solid #CCC;
}

.news-list .item .date {
  margin: 0;
  min-width: 140px;
  font-size: 16px;
  color: #432;
  padding: 0 20px 0 0;
}

.news-list .item .category {
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}

.news-list .item .category span {
  background: #9ba59b;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}

.news-list .item .title {
  margin: 0;
  width: 100%;
  font-size: 1.3rem;
}

.news-list .item a:hover .title {
  color: #432;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .news-list .item a {
    flex-wrap: wrap;
  }

  .news-list .item .date {
    min-width: 100px;
  }

  .news-list .item .title {
    margin-top: 10px;
  }

  #main-title1 {
    font-size: 4rem;
  }

  #main-title2 {
    font-size: 4rem;
  }
}

/* 装飾 */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

#read-more {
  text-align: right;
  padding-bottom: 2%;
}

#read-more a {
  font-size: 1.3rem;
  color: #432;
  background:
    linear-gradient(currentColor 0 0) var(--p, 0) 100% /var(--d, 0) 1px no-repeat;
  transition: 0.3s, background-position 0s 0.3s;
}

#read-more a:hover {
  --d: 100%;
  --p: 100%;
  color: #432;
  font-weight: bold;
}

#indexlink {
  text-align: center;
}

#indexlink div {
  display: inline-block;
  margin: 0 20px 40px 20px;
}


/* BUSINESS
------------------------------- */
#business .start {
  margin-bottom: 12rem;
}

.business-title {
  background-image: url(../images/business.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#business section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

.box17 {
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  padding: 20px 10px;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}

.box17:before,
.box17:after {
  content: '';
  position: absolute;
  top: 0px;
  width: 2px;
  height: calc(100%);
  background-color: black;
}

.box17:before {
  left: 0px;
}

.box17:after {
  right: 0px;
}

.box17 p {
  margin: 0;
  padding: 0;
}

#business article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

#business article h2 {
  font-size: 2rem;
  padding: 0 0.5em;
}

#business article p {
  font-size: 1.3rem;
  line-height: 2.5;
}

/* 楽天リンク
------------------------------- */
.button002 a {
  display: flex;
  border-radius: 7px;
  /*角丸に*/
  letter-spacing: 4px;
  font-size: 1.3rem;
  background: #eee;
  border-radius: 3px;
  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button002 a:after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button002 a:hover:after {
  border-color: #313131;
}

.button002 P {
  font-size: 1rem;
  text-align: center;
}

.button002 a:hover {
  background: #313131;
  color: #FFF;
  transition: 0.3s ease-in-out;
}

/* COMPANY
------------------------------- */
.company-title {
  background-image: url(../images/company.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#company section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#company article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

#company article h2 {
  font-size: 2rem;
  padding: 0 0.5em;
  border-left: solid 5px #9fca99;
}

#company article p {
  font-size: 1.4rem;
}

.topmessage {
  line-height: 2.5;
}

#overview {
  font-family: sans-serif;
  font-size: 1.4rem;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

#overview th,
#overview td {
  vertical-align: middle;
  border: 1px solid #707070;
}

#overview th {
  font-weight: bold;
}

#overview tr {
  border-bottom: 1px solid #b5b1b1;
}

#overview th,
#overview td {
  padding: 24px 0;
  border: none;
}

#overview th {
  width: 30%;
}

@media only screen and (max-width: 960px) {

  #overview th,
  #overview td {
    width: 100%;
    display: block;
  }

  #overview th {
    width: 100%;
  }

  #overview td {
    width: 100%;
    text-align: center;
    padding-top: 0;
  }
}

a.btn--orange {
  color: #313131;
  background-color: #eee;
  transition: 0.3s ease-in-out;
}

a.btn--orange:hover {
  color: #fff;
  ;
  background: #313131;
}

a.btn-c {
  position: relative;
  padding: 0.2rem 1rem 0.3rem 1rem;
}

.timeline {
  font-size: 1.4rem;
  margin: 0 auto;
  margin-bottom: 10rem;
  width: 100%;
  list-style: none;
}

.timeline>li {
  margin-bottom: 50px;
}

@media (min-width : 960px) {}

.timeline>li {
  overflow: hidden;
  margin: 0;
  position: relative;
}

.timeline-date {
  width: 140px;
  float: left;
  padding-top: 5.5px;
}

.timeline-content {
  width: 80%;
  float: left;
  border-left: 3px #e5e5d1 solid;
  padding-left: 20px;
}

.timeline-content:before {
  content: '';
  width: 12px;
  height: 12px;
  background: #9fca99;
  position: absolute;
  left: 135.6px;
  top: 27px;
  border-radius: 100%;
}

/* NEWS
------------------------------- */
#news .start {
  margin-bottom: 12rem;
}

.news-title {
  background-image: url(../images/news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#news section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#news article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

/* RECRUIT
------------------------------- */
#recruit .start {
  margin-bottom: 12rem;
}

.recruit-title {
  background-image: url(../images/recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#recruit section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#recruit article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

#recruit .new {
  margin-top: 40px;
}

#recruit article h2 {
  font-size: 2rem;
  padding: 0 0.5em;
  border-left: solid 5px #9fca99;
}

/* 001 */
.button001 a {
  letter-spacing: 4px;
  font-size: 1.3rem;
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button001 a:hover {
  background: #313131;
  color: #FFF;
}

.button001 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button001 a:hover:after {
  border-color: #FFF;
}

.button001 P {
  font-size: 1.3rem;
  text-align: center;
}

/* CONTACT
------------------------------- */
.contact-title {
  background-image: url(../images/contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#contact section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#contact article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

/* ACCESS
------------------------------- */
#access .start {
  margin-bottom: 12rem;
}

.access-title {
  background-image: url(../images/access.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#access section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#access article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

#access article h2 {
  font-size: 2rem;
  padding: 0 0.5em;
  border-left: solid 5px #9fca99;
}

/* Google Mapのiframe */
@media (max-width: 960px) {
  iframe {
    width: 100%;
    /* 横幅 */
    height: 300px;
    /* 縦幅 */
  }
}

a.btn--orange-2 {
  color: #313131;
  background-color: #eee;
  transition: 0.3s ease-in-out;
}

a.btn--orange-2:hover {
  color: #fff;
  ;
  background: #313131;
}

a.btn-a {
  vertical-align: text-top;
  position: relative;
  padding: 0.6rem 1rem 0.6rem 1rem;
  border-radius: 100vh;
}

#access .anchor {
  display: block;
  padding-top: 200px;
  margin-top: -140px;
}

/* mapicon */
.dli-pin-fill {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  background: currentColor;
  border: 0.1em solid currentColor;
  border-radius: 40% 60% 0% 100% / 40% 100% 0% 60%;
  box-sizing: content-box;
  transform: rotate(45deg);
}

.dli-pin-fill::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 18%;
  width: 0.336em;
  height: 0.336em;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

/* SHOPLIST
------------------------------- */
#shoplist .start {
  margin-bottom: 12rem;
}

.shoplist-title {
  background-image: url(../images/shoplist.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#shoplist section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#shoplist article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

#shoplist article h1 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 0.5em;
  letter-spacing: 4px;
}

#shoplist article h2 {
  font-size: 2rem;
  padding: 0 0.5em;
  border-left: solid 5px #9fca99;
}

a.btn3 {
  color: #313131;
  background-color: #eee;
  transition: 0.3s ease-in-out;
}

a.btn3:hover {
  color: #fff;
  ;
  background: #313131;
}

a.btn-d {
  position: relative;
  padding: 0.2rem 1rem 0.3rem 1rem;
}

#shoplist .anchor {
  display: block;
  padding-top: 200px;
  margin-top: -140px;
}

#shoplist #overview td {
  width: 45%;
}

@media only screen and (max-width: 960px) {
  #shoplist #overview td {
    width: 100%;
    text-align: center;
    padding-top: 0;
  }
}

/* CATALOG
------------------------------- */
#catalog .start {
  margin-bottom: 12rem;
}

.catalog-title {
  background-image: url(../images/catalog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#catalog section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#catalog article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

#catalog .new {
  margin-top: 40px;
}

#catalog article img {
  width: 200px;
}

#catalog article h2 {
  font-size: 2rem;
  padding: 0 0.5em;
  border-left: solid 5px #9fca99;
}

#catalog .item {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

#catalog .item span {
  display: block;
  line-height: 1px;
}

.grid {
  display: grid;
  gap: 21px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 6%;
  margin-bottom: 50px;
}

/* ACHIEVEMENT
------------------------------- */
#achievement .start {
  margin-bottom: 12rem;
}

.achievement-title {
  background-image: url(../images/shoplist.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#achievement section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#achievement article {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

#achievement article h1 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 0.5em;
  letter-spacing: 4px;
}

#achievement article h2 {
  font-size: 2rem;
  padding: 0 0.5em;
  border-left: solid 5px #9fca99;
}

a.btn3 {
  color: #313131;
  background-color: #eee;
  transition: 0.3s ease-in-out;
}

a.btn3:hover {
  color: #fff;
  ;
  background: #313131;
}

a.btn-d {
  position: relative;
  padding: 0.2rem 1rem 0.3rem 1rem;
}

#achievement .anchor {
  display: block;
  padding-top: 200px;
  margin-top: -140px;
}

#achievement #overview td {
  width: 45%;
}

@media only screen and (max-width: 960px) {
  #shoplist #overview td {
    width: 100%;
    text-align: center;
    padding-top: 0;
  }
}

/* newnews
------------------------------- */
#newnews .start {
  margin-bottom: 12rem;
}

.newnews-title {
  background-image: url(../images/news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 0 auto;
  margin-top: 60px;
  height: 180px;
  width: 100%;
}

#newnews section {
  margin: 0 auto;
  max-width: 240px;
  color: black;
  text-align: center;
  letter-spacing: 4px;
  padding-top: 10px;
}

#newnews .home-newnews {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
}

.home-newnews {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.home-newnews .title {
  font-size: 1.8rem;
}

.home-newnews .newsindex {
  display: flex;
}

.home-newnews .date {
  margin: 0;
  min-width: 100px;
  font-size: 16px;
  color: #432;
  padding: 0 20px 0 0;
}

.home-newnews .category {
  margin: 0;
  min-width: 140px;
  padding: 5px 20px 0 0;
}

.home-newnews .category span {
  background: #9ba59b;
  color: #FFF;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}

.home-newnews .maintext {
  font-size: 1.3rem;
  line-height: 2.5;
}